home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / FPSE_src / include / gte.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-01  |  304 b   |  16 lines

  1. #ifndef GTE_H
  2. #define GTE_H
  3.  
  4. #include "type.h"
  5.  
  6. typedef void (*cop2func)(UINT32 *r);
  7.  
  8. int cop2(int code,UINT32 *r);
  9. void cop2read(int regno,UINT32 *r);
  10. void cop2write(int regno,UINT32 *r);
  11.  
  12. cop2func cop2funcptr(int code);
  13. cop2func cop2readfuncptr(int regno);
  14. cop2func cop2writefuncptr(int regno);
  15.  
  16. #endif